home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="utf-8"?>
- <html><head><title>Mod-Operator [Runtime]</title><meta name="filename" content="text/sbasic/common/03070600"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
-
- p.P1{
- }
- p.P2{
- }
- span.T1{
- font-weight:bold;}
- </style></head><body>
-
-
- <help:to-be-embedded Eid="mod" xmlns:help="http://openoffice.org/2000/help">
- <p class="Head1"><help:link Id="66551">Mod-Operator [Runtime]</help:link></p>
- <p class="Paragraph">Returns the integer remainder of a division.</p>
- </help:to-be-embedded>
- <p class="Paragraph"><span class="T1">Syntax</span>:</p>
- <p class="Paragraph">Result = Expression1 MOD Expression2 <help:key-word value="MOD" tag="kw66551_1" xmlns:help="http://openoffice.org/2000/help"/></p>
- <p class="Paragraph"><span class="T1">Return value</span>:</p>
- <p class="Paragraph">Integer</p>
- <p class="Paragraph"><span class="T1">Parameter</span>:</p>
- <p class="Paragraph">Result: Any numberic variable that contains the result of the MOD operation.</p>
- <p class="Paragraph">Expression1, Expression2: Any numeric expressions to be divided.</p>
- <p class="P2">Example:</p>
- <p class="PropText">sub ExampleMod</p>
- <p class="PropText">print 10 mod 2.5 REM returns 0</p>
- <p class="PropText">print 10 / 2.5 <text:s text:c="2" xmlns:text="http://openoffice.org/2000/text"/>REM returns 4</p>
- <p class="PropText">print 10 mod 5 <text:s text:c="2" xmlns:text="http://openoffice.org/2000/text"/>REM returns 0</p>
- <p class="PropText">print 10 / 5 <text:s text:c="4" xmlns:text="http://openoffice.org/2000/text"/>REM returns 2</p>
- <p class="PropText">print 5 mod 10 <text:s text:c="2" xmlns:text="http://openoffice.org/2000/text"/>REM returns 5</p>
- <p class="PropText">print 5 / 10 <text:s text:c="4" xmlns:text="http://openoffice.org/2000/text"/>REM returns 0.5</p>
- <p class="PropText">end sub</p>
- </body></html>